home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / CONFIG.HLP < prev    next >
Text File  |  1985-09-03  |  2KB  |  55 lines

  1. ------------------  CONFIG.SYS - System Configuration File  -------------------
  2.  
  3. CONFIG.SYS is a special file that DOS reads during startup.  Configuration
  4. settings in CONFIG.SYS let you specify DOS operating options.  If a CONFIG.SYS
  5. file is not found, DOS will use default settings.
  6.  
  7.  
  8.                        Summary of CONFIG.SYS Commands
  9.                        ------------------------------
  10.  
  11. BREAK    Sets BREAK to ON or OFF.  If set to ON, DOS checks for Control-Break in
  12.          all DOS operations.
  13.  
  14.          FORMAT:  BREAK=[ON | OFF]
  15.  
  16.  
  17. BUFFERS  Sets the number of disk buffers DOS will allocate in memory.  Buffers
  18.          are blocks of memory used to hold data that was read from disk or will
  19.          be written to disk.  Each buffer increases the resident size of DOS by
  20.          528 bytes.  Significant improvements in disk read/write time may be
  21.          realized by using buffers.  If your computer has enough memory so that
  22.          your applications will not be adversely affected by a small reduction
  23.          in available memory, try running with 10 or more buffers and see if
  24.          performance improves.
  25.  
  26.          FORMAT:  BUFFERS=x
  27.  
  28.          where "x" is a number between 1 and 99.  Default value is 2.
  29.  
  30.  
  31. DEVICE   Allows you install a device driver other than the standard driver.
  32.          A special device driver, ANSI.SYS, is available on the DOS diskette.
  33.          ANSI.SYS is used for "extended screen and keyboard control."
  34.  
  35.          FORMAT:  DEVICE=[d:][path]filename[.ext]
  36.  
  37.          where the above filespec gives the name and location of the device
  38.          driver.
  39.  
  40.  
  41. FILES    Sets the number of files that can be open concurrently.
  42.  
  43.          FORMAT:  FILES=x
  44.  
  45.          where "x" is a number between 8 and 99.  The default value is 8.
  46.  
  47.  
  48. SHELL    Specifies the name and location of a top-level command processor to
  49.          loaded in place of COMMAND.COM when DOS is initialized.
  50.  
  51.          FORMAT:  SHELL=[d:][path]filename[.ext]
  52.  
  53.          where the above filespec gives the name and location of the top-level
  54.          command processor.
  55.